From fd3721aea3820a00f2cea4d37d336b86e6f43c8a Mon Sep 17 00:00:00 2001 From: "cl349@firebug.cl.cam.ac.uk" Date: Tue, 2 Aug 2005 19:06:10 +0000 Subject: [PATCH] Fix unbind_ipi_from_irq - evtchn_to_irq[evtchn] not irq_to_evtchn[evtchn]. Signed-off-by: Christian Limpach --- linux-2.6-xen-sparse/arch/xen/kernel/evtchn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-2.6-xen-sparse/arch/xen/kernel/evtchn.c b/linux-2.6-xen-sparse/arch/xen/kernel/evtchn.c index 86a07643f2..2a15fd5965 100644 --- a/linux-2.6-xen-sparse/arch/xen/kernel/evtchn.c +++ b/linux-2.6-xen-sparse/arch/xen/kernel/evtchn.c @@ -284,7 +284,7 @@ void unbind_ipi_from_irq(int ipi) evtchn_op_t op; int cpu = smp_processor_id(); int evtchn = per_cpu(ipi_to_evtchn, cpu)[ipi]; - int irq = irq_to_evtchn[evtchn]; + int irq = evtchn_to_irq[evtchn]; spin_lock(&irq_mapping_update_lock); -- 2.30.2